home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / ConsoleKit / scripts / ck-system-restart next >
Text File  |  2009-08-24  |  191b  |  13 lines

  1. #!/bin/sh
  2.  
  3. #Try for common tools
  4. if [ -x "/sbin/shutdown" ] ; then
  5.     /sbin/shutdown -r now
  6.     exit $?
  7. elif [ -x "/usr/sbin/shutdown" ] ; then
  8.     /usr/sbin/shutdown -r now
  9.     exit $?
  10. else
  11.     exit 1
  12. fi
  13.